c6dc44da762f2777573f01e773bf6b8ae44e8568,sling/core/src/main/java/org/apache/sling/core/impl/helper/SlingServletContext.java,SlingServletContext,getResource,#String#,256

Before Change


     * running.
     */
    public URL getResource(String path) throws MalformedURLException {
        return getServletContext().getResource(path);
    }

    /**

After Change


     * running.
     */
    public URL getResource(String path) throws MalformedURLException {
        ServletContext delegatee = getServletContext();
        if (delegatee != null) {
            return delegatee.getResource(path);
        }
        
        return null;
    }

    /**